projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7656d7b
)
(pcomplete-show-completions): Recognize TAB on text terminals.
author
Eli Zaretskii
<eliz@gnu.org>
Sat, 1 Apr 2006 14:31:32 +0000
(14:31 +0000)
committer
Eli Zaretskii
<eliz@gnu.org>
Sat, 1 Apr 2006 14:31:32 +0000
(14:31 +0000)
lisp/pcomplete.el
patch
|
blob
|
history
diff --git
a/lisp/pcomplete.el
b/lisp/pcomplete.el
index 36878d2dff955713ab0df4184720aae7cac5552d..0f970c5191a94e5b0d2feba0fdd4fc46fb78fbe8 100644
(file)
--- a/
lisp/pcomplete.el
+++ b/
lisp/pcomplete.el
@@
-978,7
+978,9
@@
Typing SPC flushes the help buffer."
(set-window-configuration pcomplete-last-window-config)
(setq pcomplete-last-window-config nil)
(throw 'done nil))
- ((event-matches-key-specifier-p event 'tab)
+ ((or (event-matches-key-specifier-p event 'tab)
+ ;; Needed on a terminal
+ (event-matches-key-specifier-p event 9))
(save-selected-window
(select-window (get-buffer-window "*Completions*"))
(if (pos-visible-in-window-p (point-max))